home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet internetowy / Przegladarki internetowe / Mozilla Seamonkey 1.0.5 pl / seamonkey-1.0.5.pl-PL.win32.installer.exe / MAIL.XPI / bin / chrome / messenger.jar / content / messenger / am-addressing.js < prev    next >
Encoding:
Text File  |  2006-01-23  |  4.7 KB  |  142 lines

  1. var gIdentity = null;
  2. var gPrefInt = null;
  3.  
  4. function onLoad()
  5. {
  6.   createDirectoriesList(false);
  7.   parent.onPanelLoaded('am-addressing.xul');
  8. }
  9.  
  10. function onInit() 
  11. {
  12.   onInitCompositionAndAddressing();
  13. }
  14.  
  15. function onInitCompositionAndAddressing()
  16. {
  17.   setupDirectoriesList();
  18.   enabling();
  19.   quoteEnabling();
  20. }
  21.  
  22. function onPreInit(account, accountValues)
  23. {
  24.   gIdentity = account.defaultIdentity;
  25. }
  26.  
  27. function enabling()
  28. {
  29.   var autocomplete = document.getElementById("ldapAutocomplete");
  30.   var directoriesList =  document.getElementById("directoriesList"); 
  31.   var directoriesListPopup = document.getElementById("directoriesListPopup");
  32.   var editButton = document.getElementById("editButton");
  33.  
  34.   // this is the hidden text element that assigned a value from the prefs
  35.   var overrideGlobalPref = document.getElementById("identity.overrideGlobalPref");
  36.  
  37.   switch(autocomplete.value)
  38.   {
  39.     case "0":
  40.       directoriesList.setAttribute("disabled", true);
  41.       directoriesListPopup.setAttribute("disabled", true);
  42.       editButton.setAttribute("disabled", true);
  43.       break;
  44.     case "1":
  45.         directoriesList.removeAttribute("disabled");
  46.         directoriesListPopup.removeAttribute("disabled");
  47.         editButton.removeAttribute("disabled");
  48.       break;      
  49.   }
  50.  
  51.   if (!gPrefInt) {
  52.     gPrefInt = Components.classes["@mozilla.org/preferences-service;1"]
  53.                            .getService(Components.interfaces.nsIPrefBranch);
  54.   }
  55.  
  56.   // If the default per-identity directory preferences are locked 
  57.   // disable the corresponding elements.
  58.   if (gIdentity && gPrefInt.prefIsLocked("mail.identity." + gIdentity.key + ".overrideGlobal_Pref")) {
  59.     document.getElementById("useGlobalPref").setAttribute("disabled", "true");
  60.     document.getElementById("directories").setAttribute("disabled", "true");
  61.   }
  62.   else
  63.   {
  64.     document.getElementById("useGlobalPref").removeAttribute("disabled");
  65.     document.getElementById("directories").removeAttribute("disabled");
  66.   }
  67.   if (gIdentity && gPrefInt.prefIsLocked("mail.identity." + gIdentity.key + ".directoryServer")) {
  68.     document.getElementById("directoriesList").setAttribute("disabled", "true");
  69.     document.getElementById("directoriesListPopup").setAttribute("disabled", "true");
  70.   }
  71.  
  72.   gFromGlobalPref = false;
  73.   LoadDirectories(directoriesListPopup);
  74. }
  75.  
  76. function onSave()
  77. {
  78.   onSaveCompositionAndAddressing();
  79. }
  80.  
  81. function onSaveCompositionAndAddressing()
  82. {
  83.   var override = document.getElementById("identity.overrideGlobalPref");
  84.   var autocomplete = document.getElementById("ldapAutocomplete");
  85.   var directoryServer = document.getElementById("identity.directoryServer");
  86.   var directoriesList = 
  87.       document.getElementById("directoriesList").getAttribute('value');
  88.   
  89.   // When switching between panes, 
  90.   // if we save the value of an element as null
  91.   // we will be forced to get the value from preferences when we get back.
  92.   // We are saving the value as "" for the radio button and also for
  93.   // the directory server if the selected directory is "None"
  94.   // So, we need the two elements overrideGlobalPref and directoryServer
  95.   // to save the state when the directory is 
  96.   // set to none and the first radio button is selected.
  97.   switch(autocomplete.value)
  98.   {
  99.     case "0":
  100.       override.setAttribute('value', "");
  101.       document.getElementById("overrideGlobalPref").setAttribute("value", "0");
  102.       document.getElementById("directoryServer").setAttribute("value", "");
  103.       break;
  104.     case "1":
  105.       override.setAttribute('value', true);
  106.       directoryServer.setAttribute("value", directoriesList);
  107.       document.getElementById("overrideGlobalPref").setAttribute("value", "");
  108.       if(directoriesList == "")
  109.         document.getElementById("directoryServer").setAttribute("value", "none");
  110.       else
  111.         document.getElementById("directoryServer").setAttribute("value", "");
  112.       break;
  113.   } 
  114. }
  115.  
  116. function quoteEnabling()
  117. {
  118.   var quotebox = document.getElementById("thenBox");
  119.   var placebox = document.getElementById("placeBox");
  120.   var quotecheck = document.getElementById("identity.autoQuote");
  121.  
  122.   if (quotecheck.checked && !quotecheck.disabled &&
  123.       document.getElementById("identity.attachSignature").checked &&
  124.       (document.getElementById("identity.replyOnTop").value == 1)) {
  125.     placebox.firstChild.removeAttribute("disabled");
  126.     placebox.lastChild.removeAttribute("disabled");
  127.   }
  128.   else {
  129.     placebox.firstChild.setAttribute("disabled", "true");
  130.     placebox.lastChild.setAttribute("disabled", "true");
  131.   }
  132.   if (quotecheck.checked && !quotecheck.disabled) {
  133.     quotebox.firstChild.removeAttribute("disabled");
  134.     quotebox.lastChild.removeAttribute("disabled");
  135.   }
  136.   else {
  137.     quotebox.firstChild.setAttribute("disabled", "true");
  138.     quotebox.lastChild.setAttribute("disabled", "true");
  139.   }
  140. }
  141.  
  142.